

Installation:

  1. copy the source code fealnx.c to Linux,

  2. compile the source code, the instruction for compiling the driver is
     as follows:

        #gcc -DMODULE -D__KERNEL__ -I/usr/src/linux/net/inet -Wall
             -Wstrict-prototypes -O6 -c fealnx.c

  3. insert the driver as module,

        #insmod fealnx.o

  4. bind your card to an IP address

        #ifconfig eth0 ${IPADDR} broadcast ${BROADCAST} netmask ${NETMASK}

  5. add your card to IP routing table,

        #route add -net ${NETWORK} netmask ${NETMADK} eth0

  6. now, you should be able to ping local network.
